home *** CD-ROM | disk | FTP | other *** search
- Path: coranto.ucs.mun.ca!usenet
- From: saustin@terra.nlnet.nf.ca (Steve Austin)
- Newsgroups: comp.lang.c
- Subject: Re: Help referencing an array of strings
- Date: Wed, 13 Mar 1996 02:34:29 GMT
- Organization: Kickham Productions
- Message-ID: <4i5c74$80e@coranto.ucs.mun.ca>
- References: <313C7F02.5D54@interramp.com>
- NNTP-Posting-Host: n104h133.nlnet.nf.ca
- X-Newsreader: Forte Agent .99b.112
-
- "James A. Clifton" <jclifton@interramp.com> wrote:
-
- >typedef struct ss {
- >/* some other data */
- >char sa[N][M];
- >} ss;
- >
- >ss s;
- >
- >Now how do I reference the Nth string???
-
- s.sa[N]
-
- Steve
-
-